home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / tm420_4.zip / GENESIS.SCR < prev    next >
Text File  |  1995-06-14  |  476b  |  24 lines

  1. ;
  2. ; GENESIS.SCR is a logon script file for Genesis BBS
  3. ;
  4.  
  5. string Name, Phone
  6. Name = "First Last"          ; put your name here
  7. Phone = "1234"               ; last 4 digits
  8.  
  9. Set AutoStop,On              ; stop script if carrier is lost
  10. Waitfor 0                    ; wait until string matched
  11.  
  12. When "-More-(Y,N,C): ","n"
  13. When "<Press A Key>","^M"
  14.  
  15. Waitfor "[>"
  16. Put Name
  17.  
  18. Waitfor "Enter Password: "
  19. Put "^&"
  20.  
  21. Waitfor "digits of your phone #: "
  22. Put Phone
  23.  
  24.